Carbon


AVLWalkProcPtr

Header: AVLTree.h Carbon status: Under Evaluation

typedef OSErr(* AVLWalkProcPtr) (
    AVLTreePtr tree, 
    const void *dataP, 
    AVLVisitStage visitStage, 
    AVLNodeType node, 
    UInt32 level, 
    SInt32 balance, 
    void *refCon
);

You would declare your function like this if you were to name it MyAVLWalkCallback:

OSErr MyAVLWalkCallback (
    AVLTreePtr tree, 
    const void *dataP, 
    AVLVisitStage visitStage, 
    AVLNodeType node, 
    UInt32 level, 
    SInt32 balance, 
    void *refCon
);
function result

A result code.


© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)